home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0b3 / ULabelView.h < prev    next >
Encoding:
Text File  |  1991-12-11  |  666 b   |  30 lines  |  [TEXT/MPS ]

  1. //     ULabelView.h
  2. //     Copyright © 1991 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TLabelView class, used for displaying
  5. //    the labels in the leftmost view
  6.  
  7.  
  8. #ifndef __LABELVIEW__
  9. #define __LABELVIEW__
  10.  
  11. #ifndef __AEGESTALT__
  12. #include "UAEGestalt.h"
  13. #endif
  14.  
  15.  
  16. class TLabelView : public TView {
  17. public:
  18. //    MEMBER FUNCTIONS
  19.                             TLabelView();
  20.     virtual pascal void        Initialize();
  21.     virtual pascal void     Draw(const VRect& area);
  22.     virtual pascal void        DrawLabels();
  23.  
  24. //    FIELDS
  25.     CStr255                    fLabel1, fLabel2, fLabel3, fLabel4, fLabel5,
  26.                              fLabel6, fLabel7, fLabel8, fLabel9, fLabel10,
  27.                             fLabel11, fLabel12;
  28. };
  29.  
  30. #endif